home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / tutor / dosguide.exe / HELPDOS.ZIP / TYPE.HLP < prev    next >
Text File  |  1985-09-10  |  1KB  |  40 lines

  1. ------------------------  TYPE - Internal DOS Command  -------------------------
  2.  
  3. TYPE displays the contents of a file.
  4.  
  5. FORMAT:   TYPE [d:][path]filename[.ext]
  6.  
  7. REMARKS:
  8.  
  9.    d:       -  the drive letter of the disk containing the file.
  10.    path     -  the path to the directory of the file.
  11.    filename -  the filename of the file.
  12.    .ext     -  the filename extension of the file.
  13.  
  14.    Global characters (* and ?) are not allowed in the filename or extension.
  15.    Using global characters will result in a "File not found" message.
  16.  
  17.    Text files are displayed in a readable manner.  Other file types, such as
  18.    program files, may be displayed in an unreadable manner.  The file contents
  19.    are displayed as they exist on disk, except that tab characters are expanded
  20.    to eight-character boundaries (8, 16, 24, etc).
  21.  
  22. EXAMPLES:
  23.  
  24. Display the contents of MYFILE.  MYFILE is in the current directory on the
  25. default drive:
  26.  
  27.           TYPE MYFILE
  28.  
  29.  
  30. Display the contents of COSTS.84.  COSTS.84 is in the BUDGET directory on the B
  31. drive.  BUDGET is a subdirectory of the root directory.  The default drive is A:
  32.  
  33.           TYPE B:\BUDGET\COSTS.84
  34.  
  35.  
  36. Display the contents of MYFILE.  MYFILE is in the current directory on the
  37. default drive.  Halt display scrolling when the screen is full:
  38.  
  39.           TYPE MYFILE | MORE
  40.